home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue56 / System / RasDemoForm.dfm < prev    next >
Encoding:
Text File  |  2000-03-04  |  4.6 KB  |  199 lines

  1. object MainForm: TMainForm
  2.   Left = 177
  3.   Top = 302
  4.   BorderStyle = bsDialog
  5.   Caption = 'RAS Controls Demo'
  6.   ClientHeight = 215
  7.   ClientWidth = 607
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object PageControl1: TPageControl
  20.     Left = 0
  21.     Top = 0
  22.     Width = 607
  23.     Height = 215
  24.     ActivePage = TabSheet1
  25.     Align = alClient
  26.     MultiLine = True
  27.     TabOrder = 0
  28.     TabStop = False
  29.     object TabSheet1: TTabSheet
  30.       Caption = 'Dial Codes'
  31.       object Label1: TLabel
  32.         Left = 8
  33.         Top = 8
  34.         Width = 179
  35.         Height = 13
  36.         Caption = '&International Dialing Code Information:'
  37.         FocusControl = DialCodes
  38.       end
  39.       object DialCodes: TListView
  40.         Left = 8
  41.         Top = 24
  42.         Width = 577
  43.         Height = 150
  44.         Columns = <
  45.           item
  46.             AutoSize = True
  47.             Caption = 'Country'
  48.             MinWidth = 150
  49.           end
  50.           item
  51.             AutoSize = True
  52.             Caption = 'Country Code'
  53.           end
  54.           item
  55.             AutoSize = True
  56.             Caption = 'Dialing Prefix'
  57.           end>
  58.         GridLines = True
  59.         ReadOnly = True
  60.         RowSelect = True
  61.         TabOrder = 0
  62.         ViewStyle = vsReport
  63.       end
  64.     end
  65.     object TabSheet2: TTabSheet
  66.       Caption = 'Phone Book'
  67.       ImageIndex = 1
  68.       object Label2: TLabel
  69.         Left = 8
  70.         Top = 8
  71.         Width = 94
  72.         Height = 13
  73.         Caption = '&Phone Book Entries'
  74.         FocusControl = PhoneBook
  75.       end
  76.       object PhoneBook: TListView
  77.         Left = 8
  78.         Top = 24
  79.         Width = 577
  80.         Height = 150
  81.         Columns = <
  82.           item
  83.             AutoSize = True
  84.             Caption = 'Service'
  85.             MinWidth = 100
  86.           end
  87.           item
  88.             AutoSize = True
  89.             Caption = 'UserName'
  90.             MinWidth = 100
  91.           end
  92.           item
  93.             AutoSize = True
  94.             Caption = 'Phone Number'
  95.             MinWidth = 100
  96.           end
  97.           item
  98.             AutoSize = True
  99.             Caption = 'Password'
  100.           end>
  101.         GridLines = True
  102.         ReadOnly = True
  103.         RowSelect = True
  104.         TabOrder = 0
  105.         ViewStyle = vsReport
  106.         OnDblClick = PhoneBookDblClick
  107.       end
  108.     end
  109.     object TabSheet3: TTabSheet
  110.       Caption = 'Devices'
  111.       ImageIndex = 2
  112.       object Label3: TLabel
  113.         Left = 8
  114.         Top = 8
  115.         Width = 119
  116.         Height = 13
  117.         Caption = 'RAS-Compatible &Devices'
  118.         FocusControl = DeviceList
  119.       end
  120.       object DeviceList: TListView
  121.         Left = 8
  122.         Top = 24
  123.         Width = 577
  124.         Height = 150
  125.         Columns = <
  126.           item
  127.             AutoSize = True
  128.             Caption = 'Device Name'
  129.             MinWidth = 100
  130.           end
  131.           item
  132.             AutoSize = True
  133.             Caption = 'Device Type'
  134.             MinWidth = 100
  135.           end>
  136.         GridLines = True
  137.         ReadOnly = True
  138.         RowSelect = True
  139.         TabOrder = 0
  140.         ViewStyle = vsReport
  141.       end
  142.     end
  143.     object TabSheet4: TTabSheet
  144.       Caption = 'Connections'
  145.       ImageIndex = 3
  146.       object Label4: TLabel
  147.         Left = 8
  148.         Top = 8
  149.         Width = 96
  150.         Height = 13
  151.         Caption = 'Current &Connections'
  152.         FocusControl = ConnectList
  153.       end
  154.       object ConnectList: TListView
  155.         Left = 8
  156.         Top = 24
  157.         Width = 577
  158.         Height = 150
  159.         Columns = <
  160.           item
  161.             AutoSize = True
  162.             Caption = 'Connection Name'
  163.             MinWidth = 100
  164.           end
  165.           item
  166.             AutoSize = True
  167.             Caption = 'Connection Status'
  168.             MinWidth = 100
  169.           end>
  170.         GridLines = True
  171.         ReadOnly = True
  172.         RowSelect = True
  173.         TabOrder = 0
  174.         ViewStyle = vsReport
  175.       end
  176.     end
  177.   end
  178.   object PhoneBookManager: TRASPhoneBookManager
  179.     Left = 16
  180.     Top = 400
  181.   end
  182.   object CountryList: TRASCountryList
  183.     CountryName = 'United Kingdom'
  184.     CountryDialCode = 44
  185.     CountryID = 44
  186.     Left = 16
  187.     Top = 440
  188.   end
  189.   object DeviceManager: TRASDeviceManager
  190.     Left = 564
  191.     Top = 8
  192.   end
  193.   object ConnectionManager: TRASConnectionManager
  194.     OnStatusChange = ConnectionManagerStatusChange
  195.     Left = 528
  196.     Top = 8
  197.   end
  198. end
  199.